home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / dev / src / dragclass.lha / drag_example / animtools.h next >
Encoding:
C/C++ Source or Header  |  1994-10-28  |  539 b   |  22 lines

  1. typedef struct newBob {
  2. WORD       *nb_Image;
  3. SHORT        nb_WordWidth;
  4. SHORT        nb_LineHeight;
  5. SHORT        nb_ImageDepth;
  6. SHORT        nb_PlanePick;
  7. SHORT        nb_PlaneOnOff;
  8. SHORT        nb_BFlags;
  9. SHORT        nb_DBuf;
  10. SHORT        nb_RasDepth;
  11. SHORT        nb_X;
  12. SHORT        nb_Y;
  13. USHORT        nb_HitMask;
  14. USHORT        nb_MeMask;
  15. } NEWBOB ;
  16.  
  17. struct GelsInfo *setupGelSys(struct RastPort *rPort, BYTE reserved);
  18. VOID        cleanupGelSys(struct GelsInfo *gInfo, struct RastPort *rPort);
  19. struct Bob    *makeBob(NEWBOB *nBob);
  20. VOID        freeBob(struct Bob *bob, LONG rasdepth);
  21.  
  22.